// @description Adds an option to download and convert MyVideo videos.
// @namespace http://googlesystem.blogspot.com
// @include http://*.myvideo.de/watch/*
// @include http://myvideo.de/watch/*
// @version 0.3
// ==/UserScript==
(function () {
if (document.getElementById('convert-myvideo-video')) return;
//if (video_id==null) return;
var myvideo2mp3path ='http://www.video2mp3.net/?url='+encodeURIComponent(document.URL);
var div_embed = document.getElementById('video_vote_content');
if (div_embed) {
div_embed.innerHTML = div_embed.innerHTML + '<table><tr><td><span id=\'convert-myvideo-video\'> <a class=\'btn\' href=\''+myvideo2mp3path+'\' title=\'Convert this video into MP3 and download it\' target=\'_blank\'><b>Convert & Download as MP3</b></a></span></td></tr></table><br />';